home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win9x COM Boost Time.xpl < prev    next >
Text File  |  2001-02-10  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="Hardware\Modem"
  5. "UIPATH_old"="System\File System\Windows 9x/ME Options"
  6. "NAME"="COM Boost Time"
  7. "OSVERSION"="10101"
  8. "VERSION"="1.10"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="COM Boost"
  11. "DESCRIPTION 1"="To speed up keyboard buffered operations (decrease character download time) at high speed modem transfers (above 9600 bps), using communications/internet applications. Affects the time (in milliseconds) the Operating System processes a COM port interrupt. Default value is 2. If you notice any loss of keyboard characters while using internet/communications apps, increase it to 4 or higher. Experimenting may be necessary to determine your optimal setting."
  12. "AUTHOR"="CptSiskoX (Xteq Systems)"
  13. "CONTACTURL"="http://members.fortunecity.com/computingx/"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="For X-Setup program information, go to http://www.xteq.com."
  16. "COMMENT 2"="Thanks to my friend AXCEL216 http://user.aol.com/axcel216/ for tip."
  17.  
  18. sf="SYSTEM.INI"
  19. ss="386Enh"
  20. v1="COMBoostTime"
  21.  
  22.  
  23. Sub Plugin_Initialize 
  24.   i=IniReadValue(sf,ss,v1)
  25.   SetUIElement 1,i
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  i=GetUIElement(1)
  33.  if len(i)=0 then
  34.     Call IniWriteValue(sf,ss,v1,"")
  35.  else
  36.     Call IniWriteValue(sf,ss,v1,i)
  37.  end if
  38.  
  39.  
  40.  Restart
  41. End Sub
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.  
  47.  
  48.